#search_btn {
    margin-top: 30px !important;
}

#search_btn input[type=search] {
    width: 29px;
    padding-left: 10px;
    color: transparent;
    cursor: pointer;
}
#search_btn input[type=search]:hover {
    background-color: #fff;
}
#search_btn input[type=search]:focus {
    width: 130px;
    padding-left: 32px;
    color: #000;
    background-color: #fff;
    cursor: auto;
}
#search_btn input:-moz-placeholder {
    color: transparent;
}
#search_btn input::-webkit-input-placeholder {
    color: transparent;
}




#search_btn input {
    outline: none;
}
#search_btn input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
}
#search_btn input::-webkit-search-decoration,
#search_btn input::-webkit-search-cancel-button {
    display: none;
    /* remove the search and cancel icon */
}
/* search input field */

#search_btn input[type=search] {
    background: url(../images/index_08.png) no-repeat 9px center;
    /*border: solid 1px #ccc;*/
    border: 0;
    -webkit-border-radius: 10em;
    -moz-border-radius: 10em;
    border-radius: 10em;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    padding: 9px 0 9px 0;
}
#search_btn input[type=search]:focus {
    width: 130px;
    background-color: #fff;
    border-color: #6dcff6;
    -webkit-box-shadow: 0 0 5px rgba(109, 207, 246, .5);
    -moz-box-shadow: 0 0 5px rgba(109, 207, 246, .5);
    box-shadow: 0 0 5px rgba(208, 0, 64, 1);


    padding: 9px 10px 9px 32px;
}
/* placeholder */

#search_btn input:-moz-placeholder {
    color: #999;
}
#search_btn input::-webkit-input-placeholder {
    color: #999;
}